function openIt(url, title, w, h, scrollbar, resizable, returnWin) {
	switch(openIt.arguments.length) {
	 case "1":
	 case "2":
	 case "3":
	 	alert("min 4 arguments required");
	 	return false;
	 	break;
	 case "4":
	 	scrollbar = "no";
	 	resizable = "no";
	 	returnWin = 0;
	 	break;
	 case "5":
	 	resizable = "no";
	 	returnWin = 0;
	 	break;
	 case "6":
	 	returnWin = 0;
	 	break;
	 default:
	 break;
	}
	if(returnWin){
		newWin = window.open(url, "id",'width='+w+',height='+h+',scrollbars='+scrollbar+',location=no,left=10,top=10,menubar=no,resizable='+resizable+',toolbar=no,status=no');
		newWin.document.title = title;
		return newWin;
	}
  else{
		window.open(url, "id",'width='+w+',height='+h+',scrollbars='+scrollbar+',location=no,left=10,top=10,menubar=no,resizable='+resizable+',toolbar=no,status=no');
	}
}

function showInPopUp(data, title, w, h) {
	var url = "";
	var docWin = openIt(URL, "docWin", w, h, "yes", "yes", 1);
	docWin.document.title = title
	docWin.document.open();
	docWin.document.write(data);
	docWin.document.close();	
}