function getPageStr(){
	var page, url,pos;
	url = window.location.href;
	pos = url.indexOf("#");
	if((pos < 0) || ((pos + 1) == url.length)){
		page = "";
	} else {
		page = url.substr(pos + 1, url.length - pos);
	}
	
	return page;
}

function insObj(){
	insObj0("981", "650");
}

function insObj2(){
	insObj0("100%", "100%");
}


function insObj0(w, h){
	var str;
	str = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="' + w + '" height="' + h + '">';
	str += '\n';
	str += '<param name="movie" value="webook.swf?IsWeb=1';
	str += '" />';
	str += '\n';
	str += '<param name="quality" value="high" />';
	str += '\n';
	str += '<param name="menu" value="false" />';
	str += '\n';
	str += '<embed src="webook.swf?IsWeb=1';
	str += '" menu="false" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + w + '" height="' + h + '"></embed>';
	str += '\n';
	str += '</object>';
	document.write(str);
}

