var url = location.href;
var d = "psd-tutorials.com";

document.write(url.indexOf(d));


if (url.indexOf(d)>=0)
{
	if (document.getElementById && document.createTextNode)
	{
		var baseLinks=document.getElementsByTagName('base');
		for (var i=0;i<baseLinks.length;i++)
		{
			window.location=baseLinks[i].href;

//document.write(top.location + " " + location);

//	if (top.location != location) 
//		{
//   		 	top.location.href = document.location.href ;
//		}
	}
}



