﻿// JScript File
function OpenWindow(szURL)
{
	if(szURL != '')
	 {
		window.open(szURL); 
	 }
}

function CloseWindow()
{
	window.close();
}

function OpenInParentWindow(szURL)
{
	if(szURL != '')
	 {
		window.opener.location = szURL; 
	 }
}

function ShowDialog(szURL, nID, nHeight, nWidth)
{
	var szFeatures;
	szFeatures = "height=" + nHeight + ",width=" + nWidth;
	szFeatures = szFeatures + "resizable=no, scrollbars=no";
	
	if(szURL != '')
	 {
		window.open(szURL, nID, szFeatures); 
	 }
}

function ShowScrollDialog(szURL, nID, nHeight, nWidth)
{
	var szFeatures;
	szFeatures = "height=" + nHeight + ",width=" + nWidth;
	szFeatures = szFeatures + "resizable=no, scrollbars=yes";
	
	if(szURL != '')
	 {
		window.open(szURL, nID, szFeatures); 
	 }
}

function ShowURLInParent(szURL)
{
	
	if(szURL != '')
	 {
		parent.location = szURL; 
	 }
}

function confirmDelete()
{
    return confirm("Are you sure you want to delete this record?")==true;
}
