function openDetailStriped(openURL,heightOf,widthOf){
	self.name = "main";
	if(!heightOf || heightOf == "")
		heightOf = '620';
	if(!widthOf || widthOf == "")
		widthOf = '650';
	var windowprops = "toolbar=no,location=0,directories=0,status=0, " +
	"menubar=no,scrollbars=yes,resizable=yes,width="+widthOf+",height="+heightOf+"";
	var OpenWindow2 = window.open(openURL, "view", windowprops);
	OpenWindow2.focus();
	}