﻿// JScript 文件
//==onclick="javascript:window.open('Temp.htm','0000','height=320,width=400,status=no,toolbar=no,menubar=no,location=no')"
function open_help_window(url)
{
//    var left=(screen.width-400)/2;//居中
//    var top=(screen.height-320)/2;
    var left=0;//左顶
    var top=0;
    window.open(url,'理财猫帮助页面','height=320,width=400,top='+top+', left='+left+',resizable=no, status=no,toolbar=no,menubar=no,scrollbars =yes,location=no');
}
function open_help_windowT(pid)
{
    //alert(pid);
    var url ='Web_help/EstateProduct'+pid+'.html';
    open_help_window(url);
}
function open_help_windowF(str)
{
    //alert(pid);
    var url;
    if(str=='1')
    {
        url ='Web_help/365Content.htm';
    }
    else
    {
     url ='Web_help/RuYiJTContent.htm';
    }
    open_help_window(url);
}

function open_help_windowAuto(url,auotoWidth,auotoHeigth)
{
//    var left=(screen.width-400)/2;//居中
//    var top=(screen.height-320)/2;
    var left=0;//左顶
    var top=0;
    window.open(url,'理财猫帮助页面','height='+auotoHeigth+',width='+auotoWidth+',top='+top+', left='+left+',resizable=no, status=no,toolbar=no,menubar=no,scrollbars =yes,location=no');
}

function open_help_windowLeft(url)
{
//    var left=(screen.width-400)/2;//居中
//    var top=(screen.height-320)/2;
    self.resizeTo(screen.width,screen.height-320);
    self.moveTo(0,320);
    var hrefWidth = screen.width/2 -16
    var left=0;//左顶
    var top=0;
    window.open(url,'用户详细信息','height=280,width='+hrefWidth+',top='+top+', left='+left+',resizable=yes, status=no,toolbar=no,menubar=no,scrollbars =yes,location=no');
}

function open_help_windowRight(url)
{
//    var left=(screen.width-400)/2;//居中
//    var top=(screen.height-320)/2;
    self.resizeTo(screen.width,screen.height-320);
    self.moveTo(0,320);
    var hrefWidth = screen.width/2 -16

    var left=screen.width/2;//左顶
    var top=0;
    window.open(url,'订单详细信息','height=280,width='+hrefWidth+',top='+top+', left='+left+',resizable=yes, status=no,toolbar=no,menubar=no,scrollbars =yes,location=no');
}

