<!--

function go(url)
{

	parent.location.href = (url);

}

function w_open(url,width,height)
{
	window.open(url, 'pics', 'scrollbars=0, toolbar=0, statusbar=0, width='+ width +', height='+ height +'');
}


function window_open(url, width, height)
{

	var top = (screen.height / 2) - (height / 2);
	var left = (screen.width / 2) - (width / 2);


	window.open(url, "images", "width="+ width +", height="+ height +", top="+ top +", left="+ left +", scrollbars=yes");

	return false;

}
-->