notframed();
function notframed()
{if (self != top) top.location = self.location;}
function openWindow()
{
var mainWindow;var top,left, width, height;
if(!mainWindow ||mainWindow.closed)
{top = 1/3*screen.availHeight;left = 0;width= screen.availWidth/2;height = 3/6*screen.availHeight;
var windowFeatures = ",top="+top+", left="+left+",width="+width+", height="+height;
mainWindow=window.open("","m", "menubar, resizable,scrollbars,titlebar"+windowFeatures);
}
else{mainWindow.focus;}
}

