// Id: popupc.js
// Öppnar popupfönster på bestämd plats på skärmen

function popupc()
{
 x = screen.width/2 - 150
 y = screen.height/2 - 220 
 window.open('forst.html','forst','width=250,height=110,top='+y+',left='+x+'');
}

