//pop up photos and photo gallery for inventory pages

// bp pop photo gallery

var newistWindow = null;
function launchpoptour(imagename) {
	//launchpop(imagename,w,h,imagedescript)
 	if(newistWindow	&& !newistWindow.closed) {newistWindow.close(); }
	//if(!imagedescript) {imagedescript=""; }

	//var width= w + 40;
	//var height= h + 80;
	var width= 878;
	var height= 594;
	var w= width;

	myinstructions= "location=no,scrollbars=no,resizable=yes" ;

	//myurl= "machtour.aspx?arglist=&" + imagename + "&" + escape(imagedescript)
	myurl= "photoTour/machtour.aspx?machid=" + imagename

	windowX = (screen.availWidth - 10 - w ) / 2;
	temp = "width=" + width + ",height=" + height + ",left=" + windowX + ",top=20," + myinstructions;
	newistWindow = window.open(myurl,'name1',temp);
	newistWindow.focus();
	}
	
// bp pop 
var newistWindow = null;
function launchpop(imagename,w,h,imagedescript) {
 	if(newistWindow	&& !newistWindow.closed) {newistWindow.close(); }
	if(!imagedescript) {imagedescript=""; }

	var width= w + 40;
		var height= h + 80;

	myinstructions= "location=no,scrollbars=no,resizable=yes" 

	myurl= "imagelarge.htm?arglist=&" + imagename + "&" + escape(imagedescript)

	windowX = (screen.availWidth - 10 - w ) / 2;
	temp = "width=" + width + ",height=" + height + ",left=" + windowX + ",top=20," + myinstructions;
	newistWindow = window.open(myurl,'name1',temp);
	newistWindow.focus();
	}

