// popup

function openwin(url) {
	window.open(url, "playerWindow", "status=no,scrollbars=no,resizable=yes,width=400,height=300");
}

// resize

var winW = "x";
var winH = "y";

var strUA = "";
strUA = navigator.userAgent.toLowerCase();

if(navigator.userAgent.indexOf("Win") != -1 ){
	if(strUA.indexOf("firefox") != -1){
		x = 8;
		y = 56;
	}else if(strUA.indexOf("msie") != -1){
		x = 12;
		y = 38;
	}
}
if(navigator.userAgent.indexOf("Mac") != -1 ){
	if(strUA.indexOf("safari") != -1){
		x = 0;
		y = 23;
	}else if(strUA.indexOf("firefox") != -1){
		x = 0;
		y = 18;
	}
}

function high() {
	window.resizeTo(400+x,300+y);
}

function low() {
	window.resizeTo(400+x,150+y);
}

