﻿// JScript File

var ppwindow;

function launch(winname, u) {
	if (ppwindow) { 
		ppwindow.close();
	}
	var w, h, x, y
	w = 900;
	h = 340;
	x = (screen.availWidth - w)/2;
	y = (screen.availHeight - h)/3;
    ppwindow = window.open (u, winname, 'resizable, status, scrollbars, width=' + w + ', height=' + h + ', left=' + x + ', top=' + y); 
   if (window.focus) {
		ppwindow.focus()
	} 
}

function goLocation(u) {
    window.location = u; 
}