function init(){
	window.defaultStatus='kieranchapman.net'
}

window.name = "kc";

window.focus();



// *******************
// weblog popup window
// *******************

function popWindow(theURL) {
	window.name = 'kc';
	theWidth = 550;
	theHeight = 450;

	popup = window.open(theURL,'blog','toolbar=no,location=no,directories=no,status=yes,scrollbars=yes,resizable=yes,copyhistory=no,width=' + theWidth + ',height=' + theHeight);
	  if (popup != null) {
	    if (popup.opener == null) {
	      popup.opener = self;
		}
		    popup.location.href = theURL;
	}

}


if(typeof sIFR == "function"){
    sIFR();
};
