﻿// JavaScript Document
function rambleTags(rambUrl,width,height) {
	var obj = document.getElementById("manyou");
	if(width == undefined)
		width = obj.offsetWidth;
	if(height == undefined)
		height = obj.offsetHeight;
	var strHtml = "";
	strHtml += "<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"../../../download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0\" width=\""+width+"\" height=\""+height+"\">";
	strHtml += "<param name=\"movie\" value=\"" + rambUrl + "\" />";
	strHtml += "<param name=\"wmode\" value=\"transparent\" />";
	strHtml += "<param name=\"quality\" value=\"high\" />";
	strHtml += "<param value=\"true\" name=\"allowFullScreen\"/>";
	strHtml += "<embed src=\"" + rambUrl + "\" allowFullScreen=\"true\" quality=\"high\" pluginspage=\"../../../www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\"  wmode =\"transparent\" width=\""+width+"\" height=\""+height+"\"></embed>";
	strHtml += "</object>";
	obj.innerHTML = strHtml;

	var full = document.getElementById("full");
	if(full != null){
		var str = "<h4 class='qp' onclick=\"popUpWindow('"+rambUrl+"')\"></h4>";
		full.innerHTML = str;
	}
	//document.write(strHtml);
}

function pictureTags(picUrl){
	var full = document.getElementById("full");
	if(full != null){
		full.innerHTML = "";
	}
	document.getElementById("manyou").innerHTML = "<img src=\""+picUrl+"\" alt=\"\" onerror=\"javascript:this.src='img/yitai_common.jpg'\" onLoad=\"javascript:DrawImage(this,560,360)\"/>";
}
