function openWin(url){
	var wName="fresh";
	var wWidth="800";
	var wHeight="600";
	var scWidthCenter=screen.availWidth/2;
	var scHeightCenter=screen.availHeight/2;
	option="toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width="+wWidth+",height="+wHeight;
	newWin=window.open(url,wName,option);
	newWin.window.focus();
}

/*
function openWin(url){
	window.location.href=url;
}
*/
