// JavaScript Document

function openWkGrpPage() {
window.open('https://onlinebusiness.icbc.com/dti/','renhoek_dtas_formsPubReq','toolbar=no,location=no,directories=no,status=yes,menubar=no,resizable=yes,scrollbars=yes,width=674,height=550')
}

// pop function to replace target="_blank"
function extLinkWin(){
	var winW = screen.width * 0.85;
	var winH = screen.height * 0.75;
	var winTop = 15;
	var winLeft = (screen.width - winW)/2;
	var winProps = "width="+winW+",height="+winH+",top="+winTop+",left="+winLeft;
	winProps += ",menubar=yes,location=yes,resizable=yes,status=yes,toolbar=yes,titlebar=yes,scrollbars=yes"
	var extLinkWinObj = window.open(this.href, "extLinkWinObj",winProps);
	extLinkWinObj.focus();
	return false;
}

function pdfLinkWin(){
	var winW = screen.width * 0.85;
	var winH = screen.height * 0.85;
	var winTop = 15;
	var winLeft = (screen.width - winW)/2;
	var winProps = "menubar=yes,location=no,resizable=yes,";
	winProps += "width=" + winW + ",height=" + winH + ",";
	winProps += "top=" + winTop + ",left=" + winLeft;
	var pdfLinkWinObj = window.open(this.href,"pdfLinkWinObj",winProps);
	pdfLinkWinObj.focus();
	return false;
}

// onload, attach the appropriate window open calls to pdf and external links
function bindLinkFuncs(){
	var contentBlock = document.getElementById("content");
	if(contentBlock){
		var contentLinks = contentBlock.getElementsByTagName("A");
		for(j=0;j<contentLinks.length;j++){
			var currLink = contentLinks[j];
			if(currLink.className=="pdflink"){
				currLink.onclick = pdfLinkWin;
			}else if(currLink.className=="extlink"){
				currLink.onclick = extLinkWin;				
			}
		}
	}
}