
function $(id) {
	if(document.getElementById(id)) return document.getElementById(id);
}

function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=640,height=480,left = 50,top = 50');");
}

function popUp2(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=360,height=480,left = 50,top = 50');");
}

function display(id) {
	$(id).style.display	=	'block';
}

function changeLgImg(imgName) {
	$('lgImage').style.display	=	'block';
	$('lgImage').innerHTML	=	'<img src="'+baseurl+'images/gallery/Lg/'+imgName+'.jpg" />';//src=baseurl+'images/gallery/Lg/'+imgName+'.jpg';
}