/* Philly Creative Guide Javascript Document - Window Pop-up */

function popup(url, name, width, height, scroll) {
	var str = "height=" + height + ", innerHeight=" + height + ", width=" + width + ", innerWidth=" + width + ", scrollBars=" + scroll;
	
	newwin = window.open(url, name, str + ',' + ',resizable=no, screenX=100, screenY=100, left=100, top=100');
	
	if(parseInt(navigator.appVersion) >= 4) {
		setTimeout('newwin.focus();', 250);
	};
};