﻿function ShowHideDiv(divElement, hide)
{
	var state;
	
	if (document.getElementById)
	{
		hza = document.getElementById(divElement);
		//alert(hza.style.visibility);
		
		if ((hza.style.visibility == 'hidden') || (hza.style.visibility == ''))
		{
			//alert('hide');
			hza.style.visibility = 'visible';
			hza.style.display = 'block';
		}
		else
		{
			//alert('show');
			hza.style.visibility = 'hidden';
			hza.style.display = 'none';
		}
	}
	else
	{
		if (document.layers)
		{
			//alert('layers');
			//IS NETSCAPE 4 or below 
			if (document.layers[divElement].display == 'block')
			{
				//alert('hide');
				state = 'block';
			}
			else
			{
				//alert('show');
				state = 'none';
			}

			document.layers[divElement].display = state; 
		}
		else
		{
			//alert('document.all');
			//IS IE 4 or 5 (or 6 beta) 
			if (document.all.style.display == 'block')
			{
				//alert('hide');
				state = 'block';
			}
			else
			{
				//alert('show');
				state = 'none';
			}
			eval( "document.all." + divElement + ".style.display = state");
		}
	}
}
function SubmitForm(page)
{
	alert(page);
	document.getElementById("hfPage").value = page;
	document.form1.submit();
}

function PrintPage()
{
	window.print();
}

function CopyText()
{
	var timeCharter = document.getElementById('ctl00$cphMainPanel$txtTimeCharter');
	selectedText = timeCharter.value;
	window.clipboardData.setData("Text",selectedText);
	alert('In order to paste the time charter hold "CTRL" and press "V" ')
}

function OpenWindow(id)
{
	var anchor = "../popup/default.aspx?id=" + id;
	var args = '';

	args += "height=600,"
	args += "width=860,";
	args += "screenx=0,";
	args += "screeny=0,";
	args += "left=0,";
	args += "top=0,";
	args += "scrollbars=1,";
	args += "menubar=0,";
	args += "location=0,";
	args += "resizable=0";
	
	var win = window.open(anchor, "", args);
}

function ShowDisclaimer()
{
alert('You are now leaving the Britannia Bulk plc (“BBL”) web site to go to an independent third party web site and cannot return to the BBL web site through this hyperlinked web site. BBL has no control over information at sites hyperlinked to this one.  BBL makes no representation, and is not responsible for, the quality, content, nature or reliability of any hyperlinked site or of any web site linked to a hyperlinked site.  BBL is providing this hyperlink to you only as a convenience, and the inclusion of any hyperlink does not imply any endorsement, investigation, verification or monitoring by BBL of any information contained in any hyperlinked site.  In no event shall BBL be responsible for your use of a hyperlinked site.')
}
