/*
 * popup.js
 * Copyright (C) 2008
 * Author: Pascal Haakmat <pascal.haakmat@lightmaker.com>
 * Created: 2008-03-21
 */

var Popup =
{
	show : function (url, name)
	{
		var width = 730;
		var height = 780;
		var left = 100;
		var top = 100;
		
		switch(name)
		{
			case "help":
				width = 880;
				height = 500;
				top = 100;
				left = 200;
				break;
			case "disclaimer":
				width = 880;
				height = 500;
				top = 100;
				left = 200;
				break;
			case "rapport":
				width = 880;
				height = 500;
				top = 100;
				left = 200;
				break;
				
		}
		var w = window.open(url,name,'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=' + width + ',height=' + height + ',left=' + left + ',top=' + top);
		w.focus();
	}	
}