<!--

function GoPoster(nwh,nww,nwpx,nwpy,htmname) {

// Set height and width
var NewWinHeight= + nwh;
var NewWinWidth= + nww;

// Here move it to any point on screen
var NewWinPutX= + nwpx;
var NewWinPutY= + nwpy;

// Open HTML File
var HtmName= "http://www.wdevn.com/" + htmname;


// Where 

TheNewWin =window.open(HtmName,'_blank','fullscreen=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no');
TheNewWin.resizeTo(NewWinWidth,NewWinHeight);
TheNewWin.moveTo(NewWinPutX,NewWinPutY);

}

function GoPosterScroll(nwh,nww,nwpx,nwpy,htmname) {

// Set height and width
var NewWinHeight= + nwh;
var NewWinWidth= + nww;

// Here move it to any point on screen
var NewWinPutX= + nwpx;
var NewWinPutY= + nwpy;

// Open HTML File
var HtmName= "http://www.wdevn.com/" + htmname;


// Where 

TheNewWin =window.open(HtmName,'_blank','fullscreen=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes');
TheNewWin.resizeTo(NewWinWidth,NewWinHeight);
TheNewWin.moveTo(NewWinPutX,NewWinPutY);
}

//-->

