﻿var win1;

function showWindow(Title,URL,Width,Height)
{   

    if(win1)win1.hide();
    window.showframe.location=URL;
    //var win1=Ucren.showModalDialog("panel-1", Title, Width, Height, function(){});
    //win1.show();
 //   win1.center();

    
Ucren.onReady(function (){
	 win1 = new Ucren.Window({
			left: 100,
			top: 150,
			width: Width,
			height: Height,
			caption: Title,
			icon: "",
			panel: "panel-1",
			minButton: false,
			maxButton: false,
			cloButton: true,
			resizeAble: true,
			moveAble: true
	});
	win1.show();
	win1.center();
	}) ;
       

}

function CloseWindow()
{
    win1.hide();
}
function Reload()
{
    window.location.reload();
}
function checksn(id)
{
    showWindow("预约试驾","OrderTab.aspx?id="+id,450,330);
    
}