function detail(name) {
	detailWin = window.open('detail/detail_'+name+'.html','detail','width=430,height=410,scrollbars=no,resizable=no');
	detailWin.focus();
//	setTimeout("testPopupOpen('"+name+"')",1500);
}
function detail2(name) {
	detailWin = window.open('detail/detail_'+name+'.html','detail2','width=430,height=525,scrollbars=no,resizable=no');
	detailWin.focus();
//	setTimeout("testPopupOpen('"+name+"')",1500);
}
function detail3(name) {
	detailWin = window.open('detail/detail_'+name+'.html','detail3','width=430,height=620,scrollbars=no,resizable=no');
	detailWin.focus();
//	setTimeout("testPopupOpen('"+name+"')",1500);
}
function detail4(name) {
	detailWin = window.open('detail/detail_'+name+'.html','detail4','width=430,height=800,scrollbars=no,resizable=no');
	detailWin.focus();
//	setTimeout("testPopupOpen('"+name+"')",1500);
}
function testPopupOpen(name) {
	if (!detailWin || (detailWin && detailWin.closed)) {
		location.href='detail_'+name+'.html';
	}
}
function order(anch) {
	if (anch && anch != "") {
		anch = "#"+anch;
	} else {
		anch = "";
	}
	window.opener.location.href='order.html'+anch;
	window.focus();
}

