var detect = navigator.userAgent.toLowerCase();
var thestring;

function openPlayer(url){
	if (checkIt('msie')) {
		newwin=window.open(url,'newwin','width=220,height=330,status=0,toolbars=0,menubars=0');
	}
	else {
		newwin=window.open(url,'newwin','width=220,height=330,status=0,toolbars=0,menubars=0');
	}
	newwin.focus();
}
function checkIt(string) {
	place = detect.indexOf(string) + 1;
	thestring = string;
	return place;
}
