function openRemote(contentURL, windowName, x, y){
widthHeight = 'height=' + y + ' ,width=' + x ;
remote= window.open(contentURL, windowName, widthHeight);
remote.focus();
}