var d = document;

//-------------- Initilization --------------
function Init() {
}


//---- Open Detail --------------
function OpenDetail(type, Id) {
	Left = (screen.width-500)/2;
	Top = (screen.height-550)/2;
	Attr = 'left='+Left+',top='+Top+',width=500,height=550,location=no,menubar=no,resizable=no,titlebar=no,toolbar=no,dependent=yes,fullscreen=no,scrollbars=yes,status=no';
	//Attr = 'left='+Left+',top='+Top+',width=500,height=300,location=yes,menubar=yes,resizable=yes,titlebar=yes,toolbar=yes,dependent=yes,fullscreen=no,scrollbars=yes, status=yes';
	window.open("detail.php?t="+type+"&Id="+Id, 'Detail', Attr);
	return false;
}

//--- Enlarge image --------
function enlarge(filename) {
	Left = (screen.width-810)/2;
    Top = (screen.height-610)/2-30;
    Attr = 'left='+Left+',top='+Top+',width=810,height=610,location=no,menubar=no,resizable=yes,titlebar=no,toolbar=no,dependent=yes,fullscreen=no,scrollbars=yes';
    window.open("enlarge.php?filename="+filename, '', Attr);
	return false;
}
