// popup

function openwin(url) {
	window.open(url, 'playerWindow', 'titlebar=yes,menubar=no,toolbar=no,location=no,directories=no,status=yes,scrollbars=no,resizable=yes,width=278,height=84');
}

// resize

var x;
var y;
var strUA;
strUA = navigator.userAgent.toLowerCase();

if(navigator.userAgent.indexOf('Win') != -1 && navigator.userAgent.match(/Win(dows )?NT 6\.0/)) {
	if(strUA.indexOf('firefox') != -1) {
		x = 8;
		y = 68;
	} else if(strUA.indexOf('msie 7') != -1) {
		x = 12;
		y = 96;
	}
} else if(navigator.userAgent.indexOf('Win') != -1){
		if(strUA.indexOf('firefox') != -1) {
		x = 8;
		y = 56;
	} else if(strUA.indexOf('msie 7') != -1) {
		x = 12;
		y = 84;
	} else if(strUA.indexOf('msie 6') != -1) {
		x = 12;
		y = 62;
	} else if(strUA.indexOf('msie') != -1) {
		x = 12;
		y = 62;
	}

}


if(navigator.userAgent.indexOf('Mac') != -1) {
	if(strUA.indexOf('safari') != -1) {
		x = 0;
		y = 39;
	} else if(strUA.indexOf('firefox') != -1) {
		x = 0;
		y = 18;
	}
}

function high() {
	window.resizeTo(278 + x, 84 + y);
}

function low() {
	window.resizeTo(278 + x, 84 + y);
}

