﻿/*======================================================================*\
||	Copyright (c) 2006 - 2008 Webhog Inc. All Rights Reserved.				||
||											||
||	Content Management Studio™ | CMS Srv™ v3.1						||
||											||
||	Webhog Inc. o/a  World Wide Web Manitoba						||
||	306-690 St Joseph Street, Winnipeg, Manitoba r2h 3e2					||
||	Telephone: (204) 927.2100 | Toll Free: 1.877.932.4647					||
||											||
||	Names and Trademarks are Owned by the Copyright Holder.				||
\*======================================================================*/

var	d = document,
	IE=(navigator.userAgent.indexOf('MSIE')!=-1);

function Set(Scripts) {
	var	head	= d.getElementsByTagName("head")[0],
		Script	= Scripts.split(',');
	for ( i = 0; i < Script.length; i++) {
		var _script	= d.createElement("script");
		_script.src	= "App_Listings/Inc/_" + Script[i].replace('-','/_') + ".js";
		head.appendChild(_script);
	}
}