function openWin(newUrl, w, h) {
var features = "width=" + w + "px,height=" + h + "px,top=0px,left=0px,status=no,toolbar=no,location=no,menubar=no,scrollbars=yes,resizable=yes";
window.open(newUrl,"",features);
}

function goURL(u){
	document.location.href = u;
} 

function open_demo_win(link)
{
window.open(link,"new_demo_window","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, copyhistory=yes, width=1024, height=768")
}

function open_mp3_win(link)
{
window.open(link,"new_demo_window","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, copyhistory=yes, width=300, height=200")
}

function open_chat_win(link)
{
window.open(link,"new_chat_window","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, copyhistory=yes, width=675, height=375")
}

function openWin(newUrl, w, h) {var features = "width=" + w + "px,height=" + h + "px,top=0px,left=0px,status=no,toolbar=no,location=no,menubar=no,resizable=no";
window.open(newUrl,"",features);
}