function linkOver(mObj,over){
	if(over){
		mObj.style.textDecoration = "underline";
	}else{
		mObj.style.textDecoration = "none";
	}
}
function openSampleWindow(designid){
	widthWin = 800;
	heightWin = 600;
	leftPos = (screen.width - widthWin) / 2;
	topPos = (screen.height - heightWin) / 2;

	winChild = window.open("sample.php?did="+designid,"","scrollbars=no,menubar=no,height="+heightWin+",width="+widthWin+",left="+leftPos+",top="+topPos+"resizable=yes,toolbar=no,location=no,status=no");
}
function openShirtWindow(version,designid){
	widthWin = 498;
	heightWin = 191;
	leftPos = (screen.width - widthWin) / 2;
	topPos = (screen.height - heightWin) / 2;

	winChild = window.open("designdetail.php?ver="+version+"&did="+designid,"","scrollbars=no,menubar=no,height="+heightWin+",width="+widthWin+",left="+leftPos+",top="+topPos+"resizable=yes,toolbar=no,location=no,status=no");
}
function openSuitWindow(version,designid){
	widthWin = 580;
	heightWin = 377;
	leftPos = (screen.width - widthWin) / 2;
	topPos = (screen.height - heightWin) / 2;

	winChild = window.open("designdetail.php?ver="+version+"&did="+designid,"","scrollbars=no,menubar=no,height="+heightWin+",width="+widthWin+",left="+leftPos+",top="+topPos+"resizable=yes,toolbar=no,location=no,status=no");
}
function openTieWindow(version,designid){
	widthWin = 400;
	heightWin = 480;
	leftPos = (screen.width - widthWin) / 2;
	topPos = (screen.height - heightWin) / 2;

	winChild = window.open("designdetail.php?ver="+version+"&did="+designid,"","scrollbars=no,menubar=no,height="+heightWin+",width="+widthWin+",left="+leftPos+",top="+topPos+"resizable=yes,toolbar=no,location=no,status=no");
}
function openButtonWindow(version,designid){
	widthWin = 450;
	heightWin = 200;
	leftPos = (screen.width - widthWin) / 2;
	topPos = (screen.height - heightWin) / 2;

	winChild = window.open("designdetail.php?ver="+version+"&did="+designid,"","scrollbars=no,menubar=no,height="+heightWin+",width="+widthWin+",left="+leftPos+",top="+topPos+"resizable=yes,toolbar=no,location=no,status=no");
}