//-----------------------flash detection-----------------------
/*
Embed this "javascript:setflash()" with getURL under 1st flash scene's 1st frame
*/
var gotflash = 0;
function setflash(){
	gotflash=1;
}
function noflashdetect(){
if(gotflash==0){
	document.location="noflash.php";
}
clearTimeout(checker);
}
var checker = setTimeout('noflashdetect()', 10000);
//-------------------------------------------------------------

//-----------------------title bar-----------------------------
/*
Embed this "javascript:change_titletext('Navigation Panel')" with getURL under flash
*/
document.title="W3RK | New Media Agency";
function change_titletext(a){
	document.title="W3RK | New Media Agency - " + a;
}
//-------------------------------------------------------------

//-----------------------title bar-----------------------------
/*
Embed this "javascript:change_bartext('Page Address : http://www.w3rk.com/?page=contactus')" with getURL under flash
*/
var bar_text="";
function change_bartext(a){
	bar_text=a;
}
function run_bartext(){
	window.status=bar_text;
}
setInterval ("run_bartext()", 100);
//-------------------------------------------------------------
