if ( top != self )
{
	top.location = self.document.location;
}

function openWin(url,wname )
{
	winWidth = screen.width;
	availWidth = screen.availWidth;
	availHeight = screen.availHeight;

	winHeight = availHeight - ( availHeight * 0.088 );

	var win = window.open(url,wname,'directories=no,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no,copyhistory=no,status=yes,width=' + winWidth + ',height='+ winHeight + ',left=0,top=0');		

	win.focus();	
}