<!--
function detailWin(theURL,winName,width,height,features) { // opens painting details
    var ww = width; var wh = height; var newfeatures= features; var wl = (screen.width-ww)/2;
    newWindow=window.open(theURL + '',''+ winName + '','width=' + ww + ',height=' + wh + ',top=0' + ',left=' + wl + ',features=' + newfeatures + '');
    newWindow.focus();
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function displayWindow(theURL,winName,width,height,features) {
    var ww = width;
    var wh = height;
    var newfeatures= features;
    var wt = (screen.height-wh)/4;
    var wl = (screen.width-ww)/2;
    newWindow=window.open(''+ theURL + '',''+ winName + '','width=' + ww + ',height=' + wh + ',top=' + wt + ',left=' + wl + ',features=' + newfeatures + '');
    newWindow.focus();
}

function covers(theURL,winName,width,height,features) { // opens all archived site covers
    var ww = width; var wh = height; var newfeatures= features;
    newWindow=window.open('../images/past_covers/'+ theURL + '',''+ winName + '','width=' + ww + ',height=' + wh + ',top=0,left=0' + ',features=' + newfeatures + '');
    newWindow.focus();
}

function printDetail(theURL,winName,width,height,features) { // opens all archived site covers
    var ww = width; var wh = height; var newfeatures= features; var wl = (screen.width-ww)/2;
    newWindow=window.open(theURL + '',''+ winName + '','width=' + ww + ',height=' + wh + ',top=0' + ',left=' + wl + ',features=' + newfeatures + '');
    newWindow.focus();
}

function switchpic(pic) { // web portfolio page
	if(document.getElementById) {
		document.getElementById('webprojectpic').src = pic.href;
		return false;
	} else {
		return true;
	}
}

//-->