
try {
	var topVal = 50, leftVal = 50;
	topVal  = (screen.availHeight / 2);
	leftVal = (screen.availWidth / 2);
	window.status = "Welcome To The DiGi-SecureTrak Website - The Secure Online Case Tracking System";

}catch(e) {
}


function ShowPrivacy(pathToCommon) {
	try {
		var a = window.open(pathToCommon+'docs/privacy.htm', 'PrivacyPopUp', 'width=500,height=500,top='+(topVal-280)+',left='+(leftVal-250)+',resizable,scrollbars,toolbar');
		a.focus();
	}catch(e) {
		return;
	}
}


function ShowW3CValid(pathToCommon) {
	try {
		var a = window.open(pathToCommon+'docs/sitevalidity.htm', 'W3CPopUp', 'width=700,height=550,top='+(topVal-305)+',left='+(leftVal-350)+',resizable,scrollbars,toolbar');
		a.focus();
	}catch(e) {
		return;
	}
}


function ShowScreenshotBrowser(pathToCommon) {
	try {
		var a = window.open(pathToCommon+'features/screenshots/full-browser.php', 'ScreenshotBrowser', 'width='+(screen.availWidth - 100)+',height='+(screen.availHeight - 130)+',top=18,left=50,resizable,scrollbars,toolbar,location');
		a.focus();
	}catch(e) {
		return;
	}
}

