function openWin(URL) {
aWindow=window.open(URL,"CatDetail","toolbar=no,width=740,height=490,status=no,scrollbars=yes,resizable=yes,menubar=no,top=10,left=10");
}

function openWinLarge(URL) {
x = parseInt(screen.width);
y = parseInt(screen.height);
	if (x == 800){
		window.open(URL,"newWindow","resizable=yes,scrollbars=yes,top=10,left=10,height=500,width=780;");
	}else if(x > 800){
		window.open(URL,"newWindow","resizable=yes,scrollbars=yes,top=10,left=10,height=700,width=950;");
	}
}


