// WCB ウェブコミックブラウザー　呼び出し用スクリプト
// 改変禁止

function viewpage(picext,lastpage,url,keta,extname,start,picwidth,picheight) {
	if ((lastpage == 0) || (lastpage == "" ) || (lastpage == 1)) {
		lastpage = 2;
	}

	if (keta == "" ) {
		keta = 0;
	}
	
	if (start == "" ) {
		start = 1;
	}

	var strUrl = "http://www.ne.jp/asahi/masatoshi/pasobook/script/wcb.html?";

	strUrl = strUrl  + picext + "&"
    	             + lastpage + "&"
        	         + escape(url) + "&"
            	     + keta + "&"
                	 + extname + "&"
	                 + start + "&"
					 + picwidth + "&"
					 + picheight;

	window.open(strUrl,"","resizable=1,status=yes");
}
