
function openindex(width,height,path){
/*Credit: Website Abstraction www.wsabstract.com more JavaScripts here.*/
	
	var opts = "scrollbars=yes,resizable=yes,toolbar=no,status=no,location=no,menubar=no";
	if (!width) { var width = 400;}
	if (!height) { var height = 400; }
	if (!path) { var name = 'tripindex.html';}
	else { var name = path + '/tripindex.html'; }

	opts += ',width=' + width + ',height=' + height;

win2=window.open(name,"",opts)
win2.creator=self
win2.focus
}

