/******************************************** 
 *
 * popup.js
 *
 * Copyright (c) Perific AB 2003
 *
 *
 ********************************************/
	
function popupMessage( target ) {
var w = 300;
var h = 150;
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;

var winprops = "scrollbars=no,menubars=no,toolbars=no,resizable=no" + ",height=" + h + ",width=" + w + ",top=" + wint + ",left=" + winl

	window.open(target,"popup",winprops); 
}

function popupDialog( target ) {
	window.open(target,"popup","scrollbars=0,toolbar=0,resizable=0,width=450,height=420"); 
}

function popupWindow( target ) {
	window.open(target,"popup","scrollbars=1,toolbar=0,resizable=1,width=700,height=600"); 
}
