function GoVerify(p_url, p_text)
{
	if (GoVerify.arguments.length < 2) {
		p_text = '';
	}
	else {
		p_text = p_text + "\n\n";
	}
    if (confirm(p_text+"Are You Sure?") == true) {
	    window.location = p_url;
		return true;
	}
	return false;
}
function GoDirect(p_url)
{
    window.location = p_url;
}

function Dialog(p_url,p_width,p_height,p_name,p_options,x_start,y_start)
{
	if (Dialog.arguments.length < 2) {
	    p_width = 500;
		p_height = 400;
	}
	if (navigator.appVersion.indexOf("MSIE") != -1) {
		p_height += 10;
	}
	if (Dialog.arguments.length < 4) {
		p_name = "dialog";
	}
	if (Dialog.arguments.length < 5) {
	    p_options = "toolbar,scrollbars,resizable";
	}
	if (Dialog.arguments.length < 7) {
		x_start = 200;
		y_start = 200;
	}
	if (p_options.toUpperCase() == "ALL") {
		newwin = window.open(p_url, p_name);
	}
	newwin = window.open(p_url,p_name, p_options+",width="+p_width+",height="+p_height+",screenX="+x_start+",left="+x_start+",screenY="+y_start+",top="+y_start); 
    if (newwin.focus) newwin.focus();
	if (!newwin.opener) {
		newwin.opener = self;
	}
}

