﻿// JScript File
//window.open("cataitem.aspx?id=130439", "note", "");
function CenterWindow(w, width, height)
{
    if (w)
    {
        var l = 0;
		l = window.screen.width/2 - width/2;
        var t = 0;
		t = window.screen.height/2 - height/2;
		
        if (l < 0)
            l = 0;
        if (t < 0)
            t = 0;
			
		w.moveTo(l, t);
    }
};

window.onload = function(){
	var w = window.open("/order/2010.htm", "pop2", "width=164,height=370,scrollbars=no");
	CenterWindow(w, 164, 370);
	//var w2 = window.open("zs2010.htm", "p", "width=800,height=700,scrollbars=no");
	//CenterWindow(w2, 800, 700);
}


