<!--
// #### allowing frames for roltanet ####
if (self != top) {
	if (document.images)
		top.location.replace(window.location.href);
	else
		top.location.href = window.location.href;
}

// #### clear form ### 

var opened=false;
var win;
function openWin(str,nm,width,height)
{
   	if(opened == false)
	{
		win = open(str,nm,"status=0,scrollbars=0,menubar=0,toolbar=0,location=0,resizeable=0,width="+width+",height="+height+",left="+((screen.width-width)/2)+",top="+((screen.height-height)/2));
	}
	else if(opened == true)
	{
		if(win.closed == false)
		win.close(); 
		win = window.open(str,nm,"status=0,scrollbars=0,menubar=0,toolbar=0,location=0,resizeable=0,width="+width+",height="+height+",left="+((screen.width-width)/2)+",top="+((screen.height-height)/2));
	
	}
	opened = true; 
	
}

function openWin2(str,nm,width,height)
{
   	if(opened == false)
	{
		win = open(str,nm,"status=0,scrollbars=1,menubar=0,toolbar=0,location=0,resizeable=1,width="+width+",height="+height+",left=50, top=50");
	}
	else if(opened == true)
	{
		if(win.closed == false)
		win.close(); 
		win = window.open(str,nm,"status=0,scrollbars=1,menubar=0,toolbar=0,location=0,resizeable=1,width="+width+",height="+height+",left=50, top=50");
	}
	opened = true; 
	
}


function setStat(str){
	window.status=str;
	window.defaultStatus="";
}



//-->
