function OpenWindow(linklocation) {
strFeatures = "top=50,left=50,width=390,height=400,toolbar=0,menubar=1,location=0,directories=0,status=0,scrolling=no";
	objNewWindow1 = window.open(linklocation, "MyNew", strFeatures);
objNewWindow1.focus();
}

function OpenWindow(linklocation, wd, hi, resize) {
strFeatures = "top=50,left=50,width=" +wd+ ",height=" +hi+ ",toolbar=0,menubar=0,location=0,directories=0,status=1,scrolling=no,resizable="+resize;
	objNewWindow2 = window.open(linklocation, "MyNew", strFeatures);
objNewWindow2.focus();
}