function blipTextWindow(blipType){
		if (blipType == "OPTBLIP"){
			 msgWindow=window.open("","displayWindow","titlebar=no,menubar=no,width=500,height=200,resizable=no");
   			 msgWindow.document.write("<HEAD><TITLE>Contact Testmart</TITLE>");
			 msgWindow.document.write("</HEAD>");
			 msgWindow.document.write("<BODY bgcolor=#ffffff>");
			 msgWindow.document.write('<form action=" "  method="post">');
			 msgWindow.document.write('<table cellspacing="0"><tr><td><ul><li><font face="Arial" pointsize="6">Please contact TestMart to obtain the latest information on this option.  You can call us at (888)665-2765 or +1(650)624-0525, or send e-mail to <a href="mailto:sales@testmart.com">sales@testmart.com.</a></font></td></tr>');
			 msgWindow.document.write('<tr><td align="center"><br><a href="javascript:self.close();"><img src="/webdata/img/close.gif" border="0"></a></td></tr></table>');
			 msgWindow.document.write('<br><div align="center"><img src="/webdata/img/seal5.gif" border="0"></div>');
			 msgWindow.document.write("</form></body>");
		}	
	}
	//** function blipImgWindow(ImagePath) is to show the larger product image.
	function blipImgWindow(ImagePath) 
	{
			 msgWindow=window.open("","displayWindow","titlebar=no,menubar=no,width=500,height=290,resizable=no");
			
			 if ( msgWindow != null )
			 {
			 	msgWindow.close();
				msgWindow=window.open("","displayWindow","titlebar=no,menubar=no,width=500,height=290,resizable=no");
			 }
   			 msgWindow.document.write("<HEAD><TITLE>Larger Image View</TITLE>");
			 msgWindow.document.write("</HEAD>");
			 msgWindow.document.write('<BODY bgcolor=#ffffff><div align="center">');
			 msgWindow.document.write('<form action=" "  method="post">');
			 msgWindow.document.write('<table cellspacing="0" cellpadding="0"><tr><td align="center"><img src= ' + ImagePath + '></td></tr>');
			 msgWindow.document.write('<tr><td align="center"><br><a href="javascript:self.close();"><input type="image" src="/webdata/img/close.gif" border="0" value="Close" onclick="self.close()"></a></td></tr></table>');
			 msgWindow.document.write("</form></div></body>");
	}