function winOpen(page, windowname, size) {
var newWindow = null;
newWindow =
window.open(page,windowname,size);
newWindow.focus();   
}