function popupWindow(page,pid,type,width,height,n) {
	if(page=='pop-up.php' && n==0){
		h = parseInt(height) + parseFloat(75);
		w = 597;
		var url=page + '?pid=' + pid + "&t=" + type;
	} else if(type=='Flash') {
		h = parseInt(height) + parseFloat(50);
		w = parseInt(width) + parseFloat(40);;
		var url='popup-flash.php?pid=' + pid;
	} else {
		if(n==0)
			h = parseInt(height) + parseFloat(75);
		else	
			h = parseInt(height) + parseFloat(250);
			
			w = 597;
			var url='popup.php?pid=' + pid + "&t=" + type;
	}
	
	window.open(url,"popupbig","width="+w+",height="+h+",resizable=no,scrollbars=1,toolbar=0,location=0,left=150,top=50");
}




function popupWindowDevelopment(pid,type) {
	var url='pop-up-development.php?pid=' + pid + "&t=" + type ;
	window.open(url,'','toolbar=no,location=no,directories=no,status=no,address=no,menubar=no,scrollbars=yes,width=610,height=610,screenX=150,screenY=150,top=150,left=150');
}


