<!--

/* windowOpen */
function WinOpen(theURL,winName,features) {
	window.open(theURL,winName,features);
}

/* copy */
function CopyText(arg){
var copyText = "business_sales@jp.sony.com";
clipboardData.setData( "text" , copyText );
}


/* setCookie */
function setCookie(keyname,val){
	expTime = new Date( );
	expTime.setFullYear(expTime.getFullYear( ) + 1);
	expTime = expTime.toGMTString( );
	
	tmp = keyname + "=" + val + ";";
	tmp += "expires=" + expTime + ";";
	tmp += "path=/;";
	document.cookie = tmp;
}

/* getCookie */
function getCookie(keyname){
	tmp = document.cookie + ";";
	index1 = tmp.indexOf(keyname,0);
	if (index1 !=-1){
	tmp = tmp.substring(index1,tmp.length);
	index2 = tmp.indexOf("=",0) + 1;
	index3 = tmp.indexOf(";",index2);
	return(unescape(tmp.substring(index2,index3)));
	}
	return("");
}

var listPrint = getCookie("listPrint");
var priVolume = getCookie("volume");
if (listPrint == ""){setCookie("listPrint","block");}
if (priVolume == ""){setCookie("volume","12");location.reload();}


/* pull down link */
function HRlink(form, sel)
{
	adrs = sel.options[sel.selectedIndex].value;
	if (adrs != "-" ) location.href = adrs;
}

/* valume */
function printValume(mumb,adrs)
{
	setCookie('volume',mumb);
	location.href = adrs;
}
//-->
