// 説明用のwindowを開く

//説明ページを開く
function showMaterial(url){
	newWin = window.open(url, "new", "width=600, height=450");
}

//プレゼントページを開く
function present(url){
	newWin = window.open(url, "new", "width=550, height=470");
}

//ページを変更する（商品カラー）
function chg(obj){
	location.href=obj.value;
}

//拡大写真用のページを開く
function winopen(url){
	win = window.open(url, "new", "width=680, height=650");
}

//ウィンドウを閉じる
function shutPage(){
	window.close();
}