function KeyPressFunction(buttonType)
{
	if (event.keyCode == 13) 
	{ 
		if (buttonType == "Login")
		{
			document.forms[0].btnLogin.click(); 
			event.returnValue = false;
			return false;    
		} 
		else
		{
			searchImages(buttonType);
			event.returnValue = false;
			return false;
		}
	}
}    

function searchImages(fieldName)
{
							
	if (document.forms[0].elements[fieldName].value != "")
	{
		var SearchTerm = document.forms[0].elements[fieldName].value;					
		document.location   = "GalleryStyleList.aspx?searchterm=" + SearchTerm;
	}	
}
			
function popUp(url, width, height, menubar, name, top, left) 
{
	var strName
	if(!top)
	{
		if(height)
			top = (screen.height / 2 - height / 2);
		else
			top = 50;
	}
	if(!left)
	{
		if(width)
			left = (screen.width / 2 - width / 2);
		else
			left = 100;
	}
	if(name) strName = name; else strName = "popup"
	if(menubar)
		window.open(url,strName,'toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=yes,left=' + left + ',top=' + top + ',width=' + width + ',height=' + height);
	else
		window.open(url,strName,'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,left=' + left + ',top=' + top + ',width=' + width + ',height=' + height);
}

