
//creates a new pop up window of the Company Profile with the company ID
function new_window(Id)
{
	window.open('/BuyersGuide/CompanyProfile.aspx?CompanyId='+ Id,'newWin','alwaysRaised,resizable,menubar,scrollbars,width=550, height=550');
}//end function

// creates a new popup window of the print pre
function PrintPopup(BodyId,TitleId)
{
	win = window.open("","","'alwaysRaised,resizable,menubar,scrollbars,width=600, height=600'");
	win.document.write("<LINK href='/styles/StyleSheet.css' type='text/css' rel='stylesheet'>" + document.getElementById(TitleId).innerHTML +"<br><br>"+ document.getElementById(BodyId).innerHTML);			
	win.document.close();
			
 }
 
 //creates a new popup window for print preview in 3 column page
 function PrintPopup3col(BodyId,TitleId,SideId)
{
	win = window.open("","","'alwaysRaised,resizable,menubar,scrollbars,width=600, height=600'");
	win.document.write("<LINK href='/styles/StyleSheet.css' type='text/css' rel='stylesheet'>" + document.getElementById(TitleId).innerHTML +"<br><br><table width=100%><tr valign=top><td>"+ document.getElementById(BodyId).innerHTML + "</td><td>" + document.getElementById(SideId).innerHTML + "</TD></TR></TABLE>");			
	win.document.close();
			
 }