﻿//********************************************************************************
// $HeadURL: https://admin.dinstudio.se/svn-cms/trunk/resources/scripts/windows.js $
//
// $Rev: 416 $
// $Date: 2007-03-07 17:35:24 +0100 (on, 07 mar 2007) $
// $Author: mats $
//

//********************************************************************************
function popup(url, name, width, height)
{ 
    var left = (screen.width - width) / 2; 
    var top = (screen.height - height) / 2; 
    var win = window.open(url, name, 'width = ' + width + ',height = ' + height +
        ',left = ' + left + ',top = ' + top); 
    win.focus(); 
}

