
function popWindow(url) {
  window.open (url, 'Aux_Window', 'toolbar=0,scrollbars=1,location=0,statusbar=0,status=0,menubar=0,resizable=1,width=700,height=500,left=137,top=134');
}


// change numberofqutoes to the number of different qutoes available
var numberofqutoes = 2;

var link=0;

function rotate1 () {
// add in the link for more pictures
// add another picture by putting the below lines
// else if (link==linkno ) {
//      document.imgname.src ="PIC";
// }


link = Math.round(Math.random() * numberofqutoes) ;
//if (link==0) {
//        document.imgname.src = "images/quotes_chineseDomainNames.gif";
//} 
//else if (link==1) {
//        document.imgname.src = "images/quotes_chineseDomainNames.gif";
//}

if (link==0) {
        document.imgname.src = "images/maniam/tamil_domain_poster2.jpg";
} 
else if (link==1) {
        document.imgname.src = "images/maniam/tamil_domain_poster2.jpg";
}


}

function changeLink() {
// assign each link with the URL upon clicking.
// add another link by putting the below lines
// else if (link==linkno ) {
// 	location.href=URL;
// }

        if (link==0) {
                location.href="javascript:popWindow('popup_chineseDomainNames.html')";
        } 
	else if (link==1) {
                location.href="javascript:popWindow('popup_chineseDomainNames.html')";
        }

}


