function popWin (address){
	window.open(address,'pop','width=500,height=480,resizable,scrollbars=yes,status=no;');
}

function popMap (address){
	window.open(address,'pop','width=850,height=830,resizable,scrollbars=yes,status=no;');
}

function popCoupon (address){
	window.open(address,'coupon','width=600,height=480,resizable,scrollbars=yes,status=no;menubar=yes;');
}

function redirect(selectObj) {
	document.location = selectObj.options[selectObj.selectedIndex].value;
}

function getRef(obj){
        return (typeof obj == "string") ?
        document.getElementById(obj) : obj;
}

function setStyle(obj,style,value){
        getRef(obj).style[style]= value;
}

function setClassName(obj, className){
        getRef(obj).className= className;
}