// launch sized popup window ##
function launch(url, w, h) { p=open(url,"image","width="+w+",height="+h+",toolbar=yes,resizable=yes, scrollbars=yes,menubar=no,status=no,directories=no,location=no,top=50,left=130");
	if (p.focus) p.focus(); }

// open selected image in autoresized window ##
function PopupPic(sPicURL) { 
	//window.open("../../generic_docs/viewer.asp?IMG="+sPicURL, "", "resizable=1,HEIGHT=200,WIDTH=200,top=200,left=300"); }
	window.open("http://www.basespace.eu/docs/viewer.asp?IMG="+sPicURL, "", "resizable=1,HEIGHT=200,WIDTH=200,top=200,left=300"); } // testing fix ##

// clear field ##
function clearBox(objElement) { objElement.value="" } 

// if trapped in frame then break out ##
function break_out() {
	if (top.location != location) {
    top.location.href = document.location.href ; } }
