

function previewP(image, title, width, height){ 
previewWindow=window.open("","","width=" +width+ ",height=" +height+ ",top=50,left=50") 
if (previewWindow){
previewWindow.focus()
previewWindow.document.open()
previewWindow.document.write("<head><title>" +title+ " - Coast Tire <\/title><\/head><body border=0 topmargin=0 leftmargin=0><img src="+'"'+image+'"'+"width="+width+" height="+height+"><\/body>") 
previewWindow.document.close()
}
else
alert('Unable to open the preview window.')
}



