//-----------------------------Pop Up Radio-------------------------------
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=345,height=255,left=300,top=300');");
}
//-----------------------------Pop Up Budget------------------------------
var newwindow;
function PopBudget(url)
{
	newwindow=window.open(url,'name','height=100,width=500');
	if (window.focus) {newwindow.focus()}
}
//-----------------------------Pop Up OT----------------------------------
var newwindow;
function PopOT(url)
{
	newwindow=window.open(url,'name','height=350,width=650');
	if (window.focus) {newwindow.focus()}
}
//-----------------------------Test Function------------------------------

function test()
{
	alert('Dekhai na...');
	
}

//--------------- Wimpy PopUp ------------------------
function wimpyPopPlayer(url,name,stuff) {
  	wimpywindow=window.open(url,'netbetar','height=190,width=310');
	if (window.focus) {wimpywindow.focus()}
}

