function show(div) {
	var obj = getRef(div);
	if(obj !=null)
	{obj.style.display = 'block'; }
}

function hide(div) {
	var obj = getRef(div);
	if(obj !=null)
	{obj.style.display = 'none';}
}

function JsOpenCatalogue(){
	window.open('/webcatalog.asp', 'WinCatalogue', 'resizable=no,scrollbars=no,x=100,y=100,width=750,height=650');
}


function toggle_menu(contents) {
if(contents.style.display == "none") {
contents.style.display = "";
} else {
contents.style.display = "none";
} 
}
function movePage(val) {
	var form = document.Frm;
	form.vSort.value = val;
	form.submit();
}

function OpenWindow(vUrl, vX, vY){

window.open(vUrl, 'Win', 'resizable=no,scrollbars=no,x=300,y=300,width=' + vX + ',height=' +vY);
}

function OpenWindowScroll(vUrl, vX, vY){

window.open(vUrl, 'Win', 'resizable=no,scrollbars=yes,x=300,y=300,width=' + vX + ',height=' +vY);
}
 function popEvent(){
		window.open("/event/cash_event_step1.asp", "cashEvent", "width=570, height=350");
 }
