﻿function openLink(url){ window.location = url.toString(); }

function openLinkInWindow(url)
{
	try
	{
		var newwindow
		if(url.indexOf("CIE") > -1 || url.indexOf("BPOS") > -1)
			newwindow = window.open(url,"","height=822,Width=982,scrollbars=1,toolbar=1,menubar=1,location=1,resizable=1,status=1");
		else newwindow = window.open(url);
		if (window.focus) { newwindow.focus() }
	}
	catch (ex) { window.alert("This link could not be opened.\nYou may need to disable your browser's popup blocker."); }
}

function clickHomeLink(){ openLink("/default.aspx"); }

function clickVideoLink()
{
	try
	{
		var w = 1036, h = 715;
		var newwindow = window.open("http://www.sellmsbpi.com/Pages/Videos/v.htm", 'Videos', 'height=' + h + ',width=' + w + ',toolbar=0,menubar=0,location=0,resizable=1,status=0');
		if (window.focus) { newwindow.focus() }
	}
	catch (ex) { window.alert("This link could not be opened.\nYou may need to disable your browser's popup blocker."); }
}