
/************************************/
/*** do not change anything below ***/
/************************************/


function newWin(name){
var w = 660;
var h = 500;
var winl = (screen.width-w)/2;
var wint = (screen.height-h)/2;


pop = open(name+"/postcard.html","new","height="+h+",width="+w+",top="+wint+",left="+winl+",scrollbars=no,resizable=no");
}


