/**
 * $Workfile: atWrapperUtils.js $
 * $Revision: 1 $
 *  $Modtime: 6/11/09 15:56 $
 *   $Author: Peter.goulborn $ 
 * Class: Astun.JS.WrapperUtils
 * Container for classes and functions for use in wrapper pages 
 * !IMPORTANT! NO THIRD-PARTY LIBRARIES ALLOWED!
 */
 
 
if( !Astun ) {
	var Astun = {};
}
if( !Astun.JS ) {
	Astun.JS = {};
}
if( !Astun.JS.WrapperUtils ) {
	Astun.JS.WrapperUtils = {};
}


Astun.JS.WrapperUtils.CSSLink = function( cssuri, options ) {
	var closer = ( options.xhtml ) ? '/' : '';
	 document.write('<link href="' + cssuri + '" type="text/css" rel="stylesheet" ' + closer + '>');	
}
 
 

