function openPrintPreview(){
	var win1;
	var textTobeWritten= '<table width="500" border="0" cellspacing="0" cellpadding="0" ><tr> <td style="padding:10px 0pt 10px 10px; font-weight:bold;"><div id="prodNamePOP">';
	if(document.getElementById('prodNamforPOP')) textTobeWritten +=  document.getElementById('prodNamforPOP').innerHTML;
    textTobeWritten +=  '</div></td> <td>&nbsp;</td> </tr> <tr> <td width="320">';
	if(document.getElementById('productImgforPOP'))
	textTobeWritten +=  document.getElementById('productImgforPOP').innerHTML;
	textTobeWritten +=  '</td> <td valign="top" style="margin-top:10px;" ><div id="prodInfPOP" >';
	if(document.getElementById('productInfoforPOP'))	textTobeWritten +=  document.getElementById('productInfoforPOP').innerHTML;
	textTobeWritten += '</div></td> </tr> <tr> <td style="padding:10px 0pt 10px 10px; font-weight:bold;" colspan="2"><div id="prodDesPOP">';
	if(document.getElementById('proddesforPOP')) textTobeWritten +=  document.getElementById('proddesforPOP').innerHTML;
	textTobeWritten += '</div></td> </tr> </table>';	
	document.getElementById('prnContainer').innerHTML = textTobeWritten;
	win1 = window.open('printpreview.html', 'window','toolbar = no, status = no, menubar = no, "height=100%",scrollbars=yes ');

}

function openPrintProdPreview(){
	var win1;
	var textTobeWritten= document.getElementById('prodinfobdy').innerHTML;	
    document.getElementById('prnProdContainer').innerHTML = textTobeWritten;
	win1 = window.open('printprodpreview.html', 'window','toolbar = no, status = no, menubar = no, "height=100%",scrollbars=yes ');

}
