imgframe = 0;
noimg = 10;
img_dir;

function preLoadImg() {
r_imgs = new Array(noimg);
for (var i=0; i < noimg; i++) {
	r_imgs[i] = new Image();
//	images[i].onload = count_images;
	r_imgs[i].src = "images/other/spin" + i + ".jpg";
};
	flashImg();
};

function flashImg() {
	document.images['home_imgdisp'].src = r_imgs[imgframe].src;
	imgframe = (imgframe+1)%noimg;
	timeout_out = setTimeout( "flashImg();", 3000);

};

function changeImg(n) {
	imgName = new Image();
	imgName.src = "images/other/flr_idx" + n + ".jpg";
	document.images['floral_imgdisp'].src = imgName.src;

return true;
};

function imgdir(imgd) {
img_dir = imgd;
}

// one more parameter to indicate the shape of the image
function popImage(imgid, imgtype) {

img_id = imgid;
//img_id = imgid.toUpperCase();
img_type = imgtype.toUpperCase();
var img_name = img_dir + img_id + ".jpg";

if (img_type == 'H') {
	wpx = 620;
	hpx = 600;
	imgDisp=' width=550';
} else if (img_type == 'V') {
	wpx = 600;
	hpx = 680;
	imgDisp=' height=580';
} else if (img_type == 'S') {
	wpx = 550;
	hpx = 600;
	imgDisp=' width=500';
} else if (img_type == 'W') {
// extra wide one
	wpx = 650;
	hpx = 500;
	imgDisp=' width=600';
} else if (img_type == 'T') {
// extra tall one
	wpx = 500;
	hpx = 680;
	imgDisp=' height=580';
} else {
// the rest
	wpx = 600;
	hpx = 600;
	imgDisp=' width=550';
}

var vstr = "width="+wpx+",height="+hpx+",left="+10+",top="+10+",scrollbars";

newWindow = window.open("", "_pop1", vstr);
newWindow.document.open();
newWindow.document.write('<html><title>Rosea Fine Art</title><body bgcolor="#F3F3F3" leftmargin="0" topmargin="20" marginheight="0" marginwidth="0" onBlur="self.close()";>');

newWindow.document.write('<center><img src='+img_name+imgDisp+' border=1>');
newWindow.document.write('<p align="center"><font size="2" face="Arial, verdana, arial, helvetica" color="#FF0000">Code: '+img_id+'<br>Rosea Fine Art<br>Call to Order (908)281-1950<br/>or Email to sales@roseafineart.com</font></p></body></html>');

newWindow.document.close();
newWindow.focus();
}

// Default to the horizontal images
function popImg(imgid) {

	img_id = imgid;
//	img_id = imgid.toUpperCase();
	var img_name = img_dir + img_id + ".jpg";

	wpx = 630;
	hpx = 600;
	imgDisp=' width=500';

var vstr = "width="+wpx+",height="+hpx+",left="+10+",top="+10+",scrollbars";

newWindow = window.open("", "_pop1", vstr);
newWindow.document.open();
newWindow.document.write('<html><title>Rosea Fine Art</title><body bgcolor="#F3F3F3" leftmargin="0" topmargin="20" marginheight="0" marginwidth="0" onBlur="self.close()";>');

newWindow.document.write('<center><img src='+img_name+imgDisp+' border=2>');
newWindow.document.write('<p align="center"><font size="2" face="Arial, verdana, arial, helvetica" color="#FF0000">Code: '+img_id+'<br>Rosea Fine Art<br>Call to Order (908)281-1950 <br/>or Email to sales@roseafineart.com</font></p></body></html>');

newWindow.document.close();
newWindow.focus();
};