function openWin(url, name) 
{
popupWin = window.open(url, name, "width=300,height=300,left=0,right=0,toolbar=no,scrollbars=no,resizable=no");
}

function openWin2(url, name) {
	if(screen.width >= 800) {
	popupWin = window.open(url, name, "width=570,height=450,left=0,right=0,toolbar=no,scrollbars=yes,resizable=yes");
	} else {
	popupWin = window.open(url, name, "width=570,height=450,left=0,right=0,toolbar=no,scrollbars=yes,resizable=yes");
	}
}
function openWin3(url, name) {
	if(screen.width >= 800) {
	popupWin = window.open(url, name, "width=525,height=450,left=0,right=0,toolbar=no,scrollbars=yes,resizable=yes");
	} else {
	popupWin = window.open(url, name, "width=525,height=450,left=0,right=0,toolbar=no,scrollbars=yes,resizable=yes");
	}
}
function openWin4(url, name) {
	if(screen.width >= 800) {
	popupWin = window.open(url, name, "width=700,height=500,left=0,right=0,toolbar=no,scrollbars=yes,resizable=yes");
	} else {
	popupWin = window.open(url, name, "width=700,height=500,left=0,right=0,toolbar=no,scrollbars=yes,resizable=yes");
	}
}

