//|
//|JavaScript Document
//|


//|
//| Open external URL
//|
function clickout(url)
{
	width = 968;
	height =725;
	
	urlstring= escape( url + '&page=' + self.location);
window.open('doclick.php?url=' + urlstring, '', 'toolbars=no,width=' + width + ',height=' + height + ',location=yes,toolbar=yes,scrollbars=yes,location=yes,menubar=yes,directories=yes,resizable=yes,left=' + ((screen.width - width) / 2) + ', top=' + ((screen.height - height) / 2));	
}


function clickin(url)
{
	width = 968;
	height =725;
	
	urlstring= escape( url + '&page=' + self.location);
window.open(url,'intwindow');	
}


