// JavaScript Document

function newChapterWebDesign(winTitle,winWidth,winHeight)
{
	newWindow =  window.open("","","width="+winWidth+",height="+winHeight+",top=150,left=100");
	newWindow.document.open();
	newWindow.document.write('<title>'+winTitle+'</title>');	
	newWindow.document.write('<body bgcolor="#ffffff" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');
	newWindow.document.write('<link href="jdr_css.css" rel="stylesheet" type="text/css" />');
	newWindow.document.write('<meta http-equiv="imagetoolbar" content="no" />');
	newWindow.document.write('<br>');	
	newWindow.document.write('<table width="400" border="0" cellspacing="0" cellpadding="0">');		
	newWindow.document.write('<tr><td width="75">&nbsp;</td><td class="bold">New Chapter Web Design Contact Details </td></tr>');	
	newWindow.document.write('<tr><td width="75">&nbsp;</td><td>&nbsp;</td></tr>');
	newWindow.document.write('<tr><td width="75">&nbsp;</td><td><span class="normal">Please contact Mike Jones</span></td></tr>');
	newWindow.document.write('<tr><td width="75">&nbsp;</td><td>&nbsp;</td></tr>');		
	newWindow.document.write('<tr><td width="75">&nbsp;</td><td><span class="bold">T:</span> <span class="normal">(01249)782833</span></td></tr>');	
	newWindow.document.write('<tr><td width="75">&nbsp;</td><td><span class="bold">F:</span> <span class="normal">(01249)782833</span></td></tr>');	
	newWindow.document.write('<tr><td width="75">&nbsp;</td><td><span class="bold">E:</span> <span class="normal"><a href="mailto:enquires@newchapterwebdesign.co.uk" class="greylinkunderline">enquires@newchapterwebdesign.co.uk</a></span></td></tr>');	
	newWindow.document.write('<tr><td width="75">&nbsp;</td><td>&nbsp;</td></tr>');	
	newWindow.document.write('<tr><td width="75">&nbsp;</td><td><span class="normal"><a href="" onclick="javascript:window.close()"  class="greylink"><img src="images/icon_close_window.gif" width="11" height="11" border="0">&nbsp;Close Window</a></tr>');	
	newWindow.document.write('</table>');	 		          
	newWindow.document.write("</body>");	
	newWindow.focus();
	return false;
}

theObjects = document.getElementsByTagName("object"); 
for (var i = 0; i < theObjects.length; i++) { 
theObjects[i].outerHTML = theObjects[i].outerHTML; 
}




