function clickButtonOnEnterKey(event, buttonid)
{
	var ENTER_KEY = 13
	var button = document.getElementById(buttonid); 
	if (typeof button == 'object')
	{
		if(navigator.appName.indexOf("Netscape")>(-1) || navigator.appName.indexOf("Microsoft Internet Explorer")>(-1))
		{
			if (event.keyCode == ENTER_KEY)
			{
				button.click(); 
				return false; 
			}
		}
	}
	return true;
}

// Open standard pdd size popup window
function openPopupWindow(url)
{
	window.open(url, '', 'height=400, width=680, toolbar=no, menubar=no, scrollbars=yes, resizable=no, location=no, directories=no, status=no');
}

// CIPA seal code
function oWin(w,h,url) 
{
    specs="toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistor=no,width=" + w + ",height=" + h;
    var imgWin = window.open(url,"windowname",specs);
}


