function MM_openBrWindow(theURL) { 
  window.open(theURL,'sample','scrollbars=no,width=540,height=635');
}

function MM_openBrWindow2(theURL) { 
  window.open(theURL,'sample','scrollbars=no,width=540,height=300');
}

function openWindow(url, width, height) {
	var features="location=no, menubar=no, status=no, toolbar=no, resizable=yes, scrollbars=yes'";
	features+=", width="+width;
	features+=", height="+height;
	window.open(url,'window',features);
}