/* author: Pablo Villalba */
/* creation date: 10/09/01 */
<!-- Original:  David Sosnowski (support@codebelly.com) -->
<!-- Web Site:  http://www.codebelly.com -->
var X = 60;  // x position
var Y = 60;  // y position
var W = 400; // width
var H = 380; // height

// Do not edit below this line.
var s="scrollbars,left="+X+",top="+Y+",screenX="+X+",screenY="+Y+",width="+W+",height="+H;
function popWin(U){
var SGW = window.open(U,'TheWindow',s)
}

var WMax = 613; // width
var HMax = 363; // height
var sMax="scrollbars,left="+X+",top="+Y+",screenX="+X+",screenY="+Y+",width="+WMax+",height="+HMax;
function popWinMax(U){
var SGWMax = window.open(U,'TheWindowMax',sMax)
}

var WMin = 420; // width
var HMin = 290; // height
var sMin="scrollbars,left="+X+",top="+Y+",screenX="+X+",screenY="+Y+",width="+WMin+",height="+HMin;
function popWinMin(U){
var SGWMax = window.open(U,'TheWindowMax',sMin)
}
//  End -->

