// JavaScript Document

//開啟單件購買新視窗
function openWindow( id, no ){
	var ans ;
	if(id==''){
		alert('您尚未登入!請先登入或加入會員');
		location.href='../?url=member_login_________';
	}else{
		ans =confirm("您確定要購買嗎?");
		if(ans == true){
	   		showModalDialog("shop_pet_single_buy.php?pro_no="+no,"","dialogTop=60;dialogLeft=60;dialogWidth=30;dialogHeight=30");
	   		//open("lmall_insert.php?id="+info,"_blank","top=60,left=60,width=60,height=60,toolbar=no,scrollbars=yes,resizable=yes"); 
		}
	}
}

//關閉視窗
function closeWindow(){
	close();
}

