// Piers Caswell - Digital-zest.com


// THIS must be updated to an accurate path for the Greybox popup to work correctly
var GB_ROOT_DIR = "/greybox/";

// General open js window
function popUpWindow (URL,width,height,wname,toScroll) { 
	if (toScroll == "") {
		toScroll = "no"
	}
	window.open(URL,wname,'width='+width+',height='+height+',location=no,toolbar=no,status=no,scrollbars='+toScroll+',resizable=no'); 
}
