﻿// JScript File
function KeyPress()
{
	if(window.event.keyCode == 13)
	{
		window.event.keyCode = 0;
	}
}
 
function popup(url) 
{
 params  = '';

 newwin=window.open(url,'windowname4', params);
 if (window.focus) {newwin.focus()}
 return false;
}

function galleryPopUp(url) 
{
 params  = 'width='+screen.width;
 params += ', height='+screen.height;
 params += ', top=0, left=0'
 params += ', fullscreen=yes';


 newwin=window.open('GalleryPopUp.aspx?photogallery=' + url,'windowname4', params);
 if (window.focus) {newwin.focus()}
 return false;
}
 
	function MM_openBrWindow(theURL,winName,features) { 
		win2=window.open("",winName, features);
		win2.moveTo(0,0);
		win2.location=theURL;

}
 
 
 
