// JavaScript Document
/*获取动态网站地址*/
function getActionURL(){
	return "/routonlifeClient/";
}

/*购买*/
function addToShoppingCart() {
	var url = getActionURL()+"/clientOrder!addToCart.action?productSign=" + document.getElementById("productId").value;
	//alert(url);
	url = encodeURI(url);
	window.location = url;
}

function writeActionIframe(){
	var Sys = {};
        var ua = navigator.userAgent.toLowerCase();
        if (window.ActiveXObject)
            Sys.ie = ua.match(/msie ([\d.]+)/)[1]
        else if (document.getBoxObjectFor)
            Sys.firefox = ua.match(/firefox\/([\d.]+)/)[1]
        else if (window.MessageEvent && !document.getBoxObjectFor)
            Sys.chrome = ua.match(/chrome\/([\d.]+)/)[1]
        else if (window.opera)
            Sys.opera = ua.match(/opera.([\d.]+)/)[1]
        else if (window.openDatabase)
            Sys.safari = ua.match(/version\/([\d.]+)/)[1];
	if(Sys.ie>0){
		document.write("<div style=\"float:right;margin:-5px 2px 0 0px;\"><iframe frameborder=\"0\" scrolling=\"no\" src=\""+getActionURL()+"/client/include/top_static.jsp?bgcolor=EBEBEB\" style=\"width:470px; height:20px;\"></iframe></div>");
	}else{
		document.write("<div style=\"float:right;margin:-20px 2px 0 0px;\"><iframe frameborder=\"0\" scrolling=\"no\" src=\""+getActionURL()+"/client/include/top_static.jsp?bgcolor=\" style=\"width:470px; height:20px;\"></iframe></div>");
	}
	
}

