
// JavaScript Document

// ------------------------------------------------------
//  Popup Window
// ------------------------------------------------------

	var screen_width = screen.width;
	var screen_height = screen.height;

	// 
	function popupWindow( url, name, width, height, scr ) {
		scrollbar = ( !scr ) ? scr = "no" : scr = "yes";
		position_width = ( screen_width - width ) / 2;
		position_height = (( screen_height - height ) / 2 ) - 30;

		// 
		window.top.name = "main";

		// Open window
		window.open( url, name, 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=' + scrollbar + ', resizable=no, width=' + width + ',height=' + height + ',fullscreen=no, left=' + position_width + ', top=' + position_height );
	}
