// JavaScript Document

function winOpen(page){

	str = navigator.userAgent.toUpperCase();
	str2  = navigator.appName.toUpperCase();
	if (str.indexOf("MAC") >= 0 && str2.indexOf("MICROSOFT") >= 0) {
		WinW=500;
	} else {
		WinW=516;
}
	window.open(page,"stay_window","resizable=yes,menubar=yes,directories=no,scrollbars=yes,status=yes,location=yes,width="+WinW+",height=550");
	
}
