function open_rs_window(id, link, width, height) //scrollable/resizable
{
   eval("page" + id + " = window.open(link, '" + id + "', 'titlebar=0,toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width="+width+",height="+height+"s');");
}

function openwindow(id, link, width, height) //hardset
{
   eval("page" + id + " = window.open(link, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width="+width+",height="+height+"s');");
}

function open_default_window(id, link) //hardset
{
   eval("page" + id + " = window.open(link, '" + id + "');");
}

function closewindow()
{
	self.close();
}
