///============================================
// BOOKMARK
///============================================
function bookmarksite(title, url)
	{
	if (document.all)
	window.external.AddFavorite(url, title);
	else if (window.sidebar)
	window.sidebar.addPanel(title, url, "")
	}
//
///============================================
// CENTER WINDOW POPUP
///============================================
var win = null;
function NewWindow(mypage,myname,w,h,scroll)
	{
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
	win = window.open(mypage,myname,settings)
	if(win.window.focus)
		{
		win.window.focus();
		}
	}
//
///============================================
// CHECK SERVICE ENQUIRY FORM
///============================================
function checkServiceEnquiryForm()
	{
	if((document.serviceEnquiryForm.name.value=="")||
(document.serviceEnquiryForm.position.value=="")||
(document.serviceEnquiryForm.telno.value=="")||
(document.serviceEnquiryForm.company.value=="")||
(document.serviceEnquiryForm.email.value==""))
		{
		alert('You have not completed all required fields. Please try again.');
		return false;
		}
	else
		{
		return true;
		}
	}
//
///============================================
// CONFIRM LINK
///============================================
function confirmLink(link,msg)
	{
	var agree=confirm(msg);
	if (agree)
		{
		location.href=link;
		}
	}