﻿msg="";
msg1="　　　あけましておめでとうございます。創刊106年、読者と歩む『婦人之友』の信念は「よい家庭は　よい社会をつくる」です。　"; 
msg2="　　　創刊106年、読者と歩む『婦人之友』の信念は「よい家庭は　よい社会をつくる」です。　"; 

newDate=20090116;

function selMsg(){
	d       = new Date();
	dYear    = d.getYear();
	d2       =((dYear<2000)?dYear+1900:dYear)*10000 + (d.getMonth()+1)*100 + d.getDate();

	if (d2<newDate) { //msg1を使用
		msg = msg1;
	} else {          //msg2を使用
		msg = msg2;
	}
}

//メッセージのスクロール
//引数：なし
function scrollmsg(){
	if (msg.length<1) {
		selMsg();
	}

	clearTimeout(timerID);
	document.form1.text1.value = msg+msg;
	msg = msg.substring(1,msg.length)+msg.substring(0,1);
	timerID = setTimeout("scrollmsg()",300);
}

//OS判別とブラウザ判別
function osCheck() {
	var Agent = navigator.userAgent;

	if (Agent.indexOf('Win') != -1) {
		if (document.all) { 	// Win_IE
			os = "win_ie";
			osJ = "ウィンドウズ + インターネットエクスプローラー";
		} else { 				// Win_NS
			os = "win_ns";
			osJ = "ウィンドウズ ネットスケープ";
		}
	}

	if (Agent.indexOf('Mac') != -1) {
		if (document.all) { 	// Mac_IE
			os = "mac_ie";
			osJ = "マック インターネットエクスプローラー";
		} else { 				// Mac_NS
			os = "mac_ns";
			osJ = "マック ネットスケープ";
		}
	}
		
	//return os;
	alert(osJ);
}

//親フレームのサイズを変更する
//引数：VALUE サイズ
function ChangeRows(VALUE) {
//    if(document.all){parent.document.all("TopSet").rows = VALUE }
//    if(document.getElementById){parent.document.getElementById("TopSet").rows = VALUE }

//	window.onerror = function() { reurn true }

	var Agent = navigator.userAgent;

	if (Agent.indexOf('Win') != -1){
	
		if(document.all && !window.opera){
			// IE 4/5 用のコード
			if(document.getElementById){
				// IE 5 用のコード
				//alert('IE 5 用のコード')
				parent.document.getElementById("TopSet").rows = VALUE
			} else {
				// IE 4 用のコード
				//alert('IE 4 用のコード')
				parent.document.all("TopSet").rows = VALUE
			}
		}
	}
}

function BuyIt(VALUE) {
	
	url="http://ec.fujinnotomo.co.jp/scripts/DiaEC/Fujin/Cart/vb_bridge3_TEST.dll?VBPROG=Add&ITEMNUM="+VALUE+"&RSGCODE=1&SPCODE=&PAGEID=1&ADDQTY=1";
	parent.CART.CARTLIST.location.href=url;

	ChangeRows('*,150');

//	alert(url)

}

/*
function OpenWindow(VALUE) {
	
//	alert(VALUE)
	window.open(VALUE,"婦人之友 定期購読のお申し込み","toolbar=no,location=no,directories=no,status=no,member=no,scrollbar=no,resizable=no")

}
*/

function openWin(url,w,h,t,l,title){
	var url=url;
	var title=title;
	var option='"toolbar=no,location=no,status=no, menubar=yes,scrollbars=no,resizable=yes,width='+w+',height='+h+',left='+l+',top='+t+'"';
	var win=window.open(url,title,option);
	win.window.focus();
	if(w>1000){
	win.resizeTo(screen.availWidth,screen.availHeight);
	}
}

