/*##########################################################################
	Popup Window
	Creator: Ibnu (webdeveloper@trulymoney.com)
	Created: March 10, 2006 (Friday)
	To generate popup window

	MORE JAVASCRIPTs & PHP SCRIPTS
	http://www.TRULYMONEY.COM/php_scripts

USE THIS JAVASCRIPT FOR FREE BUT PLEASE DO NOT REMOVE ANY INFORMATION ABOVE !
###########################################################################*/

function PopWin(n_win,w,h,x,y,u,r,sc,st,t,d,l,m)
{
	// n_win = window name
	// w = popup window width (pixel)
	// h = popup window height (pixel)
	// x = distance from left (pixel)
	// y = distance from top (pixel)
	// u = URL to access
	//
	// THE VALUE FOR ALL VARIABLE BELOW MUST BE FILLED WITH 1 (ONE ->true) OR 0 (ZERO ->false)
	// d = show directories
	// l = show location
	// m = show menubar
	// r = resizeable
	// sc = scrollable
	// st = show window status
	// t = show toolbar
	//
	// Application: onClick="PopWin('win. name','width','height','distance from left','distance from top','url','resizable','scrollable','window status','toolbar','directories','location','menubar');"

	NewWindow=window.open(u,n_win,config="width="+w+",height="+h+",left="+x+",top="+y+",personalbar="+d+",directories="+d+",location="+l+",menubars="+m+",resizable="+r+",scrollbars="+sc+",status="+st+",toolbar="+t+"\"");
	NewWindow.focus();
}