/*
	This JavaScript file defines some Noramco-specific site functions
*/

// this one simply raises a new window for when the "Enlarge" links are clicked
function enlargedPic(img,width,height){
	width+=35;
	height+=35;
	var picwin = window.open(img,'enlargedPic','width='+width+',height='+height+',directories=no,location=no,menubar=yes,resizable=yes,scrollbars=yes,status=no,titlebar=yes,toobar=no,alwaysRaised=yes');
	picwin.focus();
}

// This is for the types of projects list. Pops up a window that calls a php script to
// display the images/captions that are related to that link
function noramcoPop(page_title){
	var picwin = window.open('np-'+page_title+'.php','picViewer','width=250,height=350,directories=no,location=no,menubar=yes,resizable=yes,scrollbars=yes,status=no,titlebar=yes,toobar=no,alwaysRaised=yes');
	picwin.focus();
}
