<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
//slider's width
var swidth="150";

//slider's height
var sheight="100";

//slider's speed
var sspeed=2
var i=0;
//messages: change to your own; use as many as you'd like; set up Hyperlinks to URLs as you normally do: <a target=... href="... URL ...">..message..</a>
var singletext=new Array()
var timeout =100;
///singletext[0]='<div align="center"><font face=Arial size=2 color="#ffffff"><b></b><br>Graphitec News</DIV><div align="center">will be comming soon</div><b>'
//singletext[1]='<div align="center"><a href="8_contact_us.htm"><font face=Arial size=2 color="#ffffff"><br>Graphitec News</DIV><div align="center">will be comming soon</a></div><b>'
//singletext[2]='<div align="center"><a href="8_contact_us.htm"><font face=Arial size=2 color="#ffffff"><br>Graphitec News</a><b>'



function start(){
if (singletext.length>1)
i=1
else
i=0
if (document.all){
ieslider1.style.top=sheight;
iemarquee(ieslider1)
}
else if (document.layers){
document.ns4slider.document.ns4slider1.top=sheight
document.ns4slider.document.ns4slider1.visibility='show'
ns4marquee(document.ns4slider.document.ns4slider1)
}
else if (document.getElementById&&!document.all){
document.getElementById('ns6slider1').style.top=sheight;
ns6marquee(document.getElementById('ns6slider1'))
}
}
function iemarquee(whichdiv){
iediv=eval(whichdiv)

if (getBottom(iediv) >0){
iediv.style.pixelTop-=sspeed
setTimeout("iemarquee(iediv)",timeout)
}
else{

iediv.style.pixelTop=sheight
setTimeout("iemarquee(iediv)",timeout)
iediv.innerHTML=singletext[i]
if (i==singletext.length-1)
i=0
else
i++
}

}
function ns4marquee(whichlayer){
ns4layer=eval(whichlayer)

if (getBottom(ns4layer) >0){
ns4layer.top-=sspeed
setTimeout("ns4marquee(ns4layer)",timeout)
}
else{
ns4layer.top=sheight

ns4layer.document.write(singletext[i])
ns4layer.document.close()
if (i==singletext.length-1)
i=0
else
i++
}
setTimeout("ns4marquee(ns4layer)",timeout)
}

function ns6marquee(whichdiv){
ns6div=eval(whichdiv)
if (getBottom(ns6div) >0){
ns6div.style.top=parseInt(ns6div.style.top)-sspeed
setTimeout("ns6marquee(ns6div)",timeout)
}
else{

ns6div.style.top=sheight
setTimeout("ns6marquee(ns6div)",timeout)
ns6div.innerHTML=singletext[i]
if (i==singletext.length-1)
i=0
else
i++
}

}


function popUPEx(mypage, myname, w, h, scroll, titlebar)
{

	var winl = (screen.width - w)/2 ;
	var wint = (screen.height - h)/2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable=0'
	win = window.open(mypage, myname, winprops)
	if (parseInt(navigator.appVersion) >= 4) {
		win.window.focus();
	}
}


function postItNews(baseUrl,winName)
{
	popUPEx(baseUrl,winName,800,400,'yes',false);
	return false;
	
}