/*popup.js
* Senast uppdaterad av Fredrik Dogertz @ UR 8 oktober 2001
* Innehaller funktion for centrerat pop-up fonster
*/

var win = null;
function UR_nyttFonster(url,name,w,h){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars=auto'
win = window.open(url,name,settings)
}
//end
