function ogj_pipeline()
	{
	//-- create new window
	ogj_Win= open("", "displayWindow", "width=870,height=600,status=no,toolbar=no,menubar=no,scrollbars=no,resizable=no,left=50,top=50");

	//-- open document in new window
	ogj_Win.document.open();

	//-- write frame information
	ogj_Win.document.write("<html><head><title>Land Pipeline Construction</title></head><body bgcolor='#F0F0F0'>");
		ogj_Win.document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0' width=100% height=100%>");
			ogj_Win.document.write("<param name='movie' value='Oil-Gas-ver-8-r3.swf'>");
			ogj_Win.document.write("<param name='quality' value='high'>");
			ogj_Win.document.write("<embed src='Oil-Gas-ver-8-r3.swf' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='100%' height='100%'></embed>");
		ogj_Win.document.write("</object>");
	ogj_Win.document.write("</body></html>");

	//-- close the document - leave the window open
	ogj_Win.document.close();
	}