var DHTML = (document.getElementById || document.all || document.layers);
var $ = function(id){return document.getElementById(id);}
function ap_getObj(name) { 
	if (document.getElementById) 
		{ return document.getElementById(name).style; } 
	else if (document.all) 
		{ return document.all[name].style;	} 
	else if (document.layers) 
		{ return document.layers[name]; } 
} 

function OpenPromotionWindow(ID){
	window.open(
		"PromotionPopup.asp?id=" + ID, "PromWindow",
		"width=440,height=500,scrollbars=yes,menubar=no,location=no,resizeable=yes,toolbar=no,screenx=100,left=100,top=100,screeny=100");
}

function imposeMaxLength(obj)
{
	var mlength=obj.getAttribute? parseInt(obj.getAttribute("maxlength")) : "";
	return (obj.value.length < mlength);
	//<textarea onkeypress="return imposeMaxLength(this);" maxlength="15"></textarea>
}