﻿// JScript File
	
function PositionScreenCenter(obj) { // Get ScreenCenter
    
    obj.style.left = ((screen.width/2) - (830/2));
    obj.style.top = (screen.height/2) - (300/2);
}


function CheckForEnterKey(id){
	key = event ? event.keyCode : e.which;
	
	if (key == 13)
	    $(id).click;
	    
	    alert($(id));
	return key != 13;
}

function PrintPage()
{
    window.print();
}