'); } function checkValidKeyForUserName(obj, event) { // Disable invalid keypresses (except a-z, A-Z, 0-9, _). if (!((event.keyCode >= 48 && event.keyCode <= 57) || (event.keyCode >= 65 && event.keyCode <= 90) || event.keyCode == 95 || (event.keyCode >= 97 && event.keyCode <= 122))) { event.returnValue = false; } } function checkValidKeyForEmailAddress(obj, event) { //alert(event.keyCode); // Convert upper case letters(A-Z) to lower case(a-z). if (event.keyCode >= 65 && event.keyCode <= 90) { event.keyCode += 32; } if (!((event.keyCode >= 48 && event.keyCode <= 57) || (event.keyCode >= 97 && event.keyCode <= 122) || event.keyCode == 46 || event.keyCode == 45 || event.keyCode == 64 || event.keyCode == 95)) event.returnValue = false; } function checkValidKeyForContactNumber(obj, event) { if (!(event.keyCode >= 48 && event.keyCode <= 57)) { event.returnValue = false; } } // function updateValues(obj) // { // //document.getElementById('UCOnlinesubmission_lbljournalName').innerHTML=obj; // obj='ijor.aspx?target=ijor:'+obj+'&type=onlinesubmission'; // //window.navigate(obj); // window.location.href=obj; // //alert(obj); // //alert('UCOnlinesubmission_lbtnos'); // //__doPostBack('UCOnlinesubmission_lbtnos',''); // } function checkShortcutKey(obj, event) { srcElementID = event.srcElement.id; // Handle pressing of enter key. if (event.keyCode == 13 && srcElementID != "TBjdirPublisherAddress" && srcElementID != "TBjdirEditorAddress" && srcElementID != "TBsuscriptionNotes") { if (srcElementID == "DDLsearchCatagory" || srcElementID == "TBsearchText") { post(document.getElementById("quickSearch")); } else if (srcElementID == "TBuserName" || srcElementID == "TBpassword") { post(document.getElementById("BTNlogIn")); } else if (srcElementID == "TBuserNameOnHP" || srcElementID == "TBpasswordOnHP") { post(document.getElementById("BTNlogInOnHP")); } else if (srcElementID == "TBforUsersUserName" || srcElementID == "TBforUsersPassword") { post(document.getElementById("BTNforUsersLogIn")); } else if (srcElementID == "TBforToccancelUsersUserName" || srcElementID == "TBforToccancelUsersPassword") { post(document.getElementById("BTNfortocccancelUsersLogIn")); } else if (srcElementID == "TBforAssociatesUserName" || srcElementID == "TBforAssociatesPassword") { post(document.getElementById("BTNforAssociatesLogIn")); } else if (srcElementID == "TBforLibrariansUserName" || srcElementID == "TBforLibrariansPassword") { post(document.getElementById("BTNforLibrariansLogIn")); } else if (srcElementID == "TBchangePasswordOldPassword" || srcElementID == "TBchangePasswordNewPassword" || srcElementID == "TBchangePasswordConfirmPassword") { post(document.getElementById("BTNchangePasswordUpdatePassword")); } else { event.returnValue = false; } } // Disable copying from web page using ctrl+c and ctrl+insert shortcuts except from the text boxes. else if (event.ctrlKey == true && (event.keyCode == 67 || event.keyCode == 45)) { if (srcElementID.search("TB") == -1) { event.returnValue = false; } } // Disable pasting on all the user name and contact number text boxes using ctrl+v and shift+insert shortcuts. else if ((event.ctrlKey == true && event.keyCode == 86) || (event.shiftKey == true && event.keyCode == 45)) { if (srcElementID == "TBuserName" || srcElementID == "TBuserNameOnHP" || srcElementID == "TBregisterUserName" || srcElementID == "TBregisterContactNumber") { event.returnValue = false; } } } function emailidupd(username, pwd) { var response = window.showModalDialog("emailidupd.aspx?u=" + username + "&p=" + pwd, "", "dialogWidth:500px,dialogHeight:200px,dialogTop:200px,dialogLeft:300px,toolbars:no,scrollbars:no,status=0,directories=0,location=0,resizable:no"); return response; } function post(obj) { objID = obj.id; if (objID == "BTNlogIn") { //Changed by Shyam 20-Feb-2014 //Revome Passowrd validation //if (document.getElementById("TBuserName").value != "" & document.getElementById("TBpassword").value != "") { // if (document.getElementById("TBuserName").value.indexOf("@") == -1) { // var obj = emailidupd(document.getElementById("TBuserName").value, document.getElementById("TBpassword").value); if (document.getElementById("TBuserName").value != "") { if (document.getElementById("TBuserName").value.indexOf("@") == -1) { var obj = emailidupd(document.getElementById("TBuserName").value); //alert(obj); if (obj != undefined && obj == true) { document.getElementById("TBuserName").value = ''; document.getElementById("TBpassword").value = ''; alert("Please use valid email address to login. Please try again."); //__doPostBack('LBTNlogIn',''); } } else { //document.getElementById("chkloghometop").checked=true; __doPostBack('LBTNlogIn', ''); } } } else if (objID == "BTNlogInOnHP") { //Changed by Shyam 07-Feb-2014 //Revome Passowrd validation //if (document.getElementById("TBuserNameOnHP").value != "" & document.getElementById("TBpasswordOnHP").value != "") { // if (document.getElementById("TBuserNameOnHP").value.indexOf("@") == -1) { // var obj = emailidupd(document.getElementById("TBuserNameOnHP").value, document.getElementById("TBpasswordOnHP").value); if (document.getElementById("TBuserNameOnHP").value != "") { if (document.getElementById("TBuserNameOnHP").value.indexOf("@") == -1) { var obj = emailidupd(document.getElementById("TBuserNameOnHP").value); //alert(obj); if (obj != undefined && obj == true) { document.getElementById("TBuserNameOnHP").value = ''; document.getElementById("TBpasswordOnHP").value = ''; alert("Please use valid email address to login. Please try again."); //__doPostBack('LBTNlogInOnHP',''); } } else { //document.getElementById("chkloghome").checked=true; __doPostBack('LBTNlogInOnHP', ''); } } } else if (objID == "quickSearch") { var searchString = document.getElementById("TBsearchText").value; var obj = /^(\s*)([\W\w]*)(\b\s*$)/; if (obj.test(searchString)) { searchString = searchString.replace(obj, '$2'); } var obj = / +/g; searchString = searchString.replace(obj, " "); if (searchString == " ") { searchString = ""; } if (searchString != "") { window.navigate("?target=search&type=" + document.getElementById("DDLsearchCatagory").value + "&string=" + searchString); } } else if (objID == "BTNforUsersLogIn") { if (document.getElementById("TBforUsersUserName").value != "" & document.getElementById("TBforUsersPassword").value != "") { __doPostBack('LBTNforUsersLogIn', ''); } } else if (objID == "BTNfortocccancelUsersLogIn") { if (document.getElementById("TBforToccancelUsersUserName").value != "" & document.getElementById("TBforToccancelUsersPassword").value != "") { __doPostBack('LBTNfortoccancelUsersLogIn', ''); } } else if (objID == "BTNforAssociatesLogIn") { if (document.getElementById("TBforAssociatesUserName").value != "" & document.getElementById("TBforAssociatesPassword").value != "") { __doPostBack('LBTNforAssociatesLogIn', ''); } } else if (objID == "BTNforLibrariansLogIn") { if (document.getElementById("TBforLibrariansUserName").value != "" & document.getElementById("TBforLibrariansPassword").value != "") { __doPostBack('LBTNforLibrariansLogIn', ''); } } else if (objID == "BTNchangePasswordUpdatePassword") { if (document.getElementById("TBchangePasswordOldPassword").value != "" & document.getElementById("TBchangePasswordNewPassword").value != "" & document.getElementById("TBchangePasswordConfirmPassword").value != "") { __doPostBack('LBTNchangePasswordUpdatePassword', ''); } } } function GetDate(CtrlName) { /**************************************************** Use Javascript method (window.open) to PopUp a new window which contain a Calendar Control. In the meantime, we'll pass the Parent Form Name and Request Control Name in the QueryString! *****************************************************/ //use showModalDialog() ChildWindow = window.open('Calendar1.aspx?FormName=' + document.forms[0].name + '&CtrlName=' + CtrlName, "PopUpCalendar", "width=270,height=300,top=200,left=200,toolbars=no,scrollbars=no,status=no,resizable=no"); //ChildWindow.focus(); } // function GetemailidupdWindow() // { //use showModalDialog() // ChildWindow = window.showModalDialog('ijor.aspx?target=emailidupd', "Update Email ID", "dialogwidth=270,dialogheight=300,dialogtop=200,dialogleft=200,toolbars=no,scrollbars=no,status=no,resizable=no"); // ChildWindow.focus(); // } function sendMsg() { event.returnValue = "Logoff"; window.location.href = "https://deepak/ijor1/sessionout.aspx"; }
(185.177.239.172)
Email id
 

Introduction

IndianJournals.com is a vast collection of interdisciplinary Indian Journals and Research Publications, providing:

  • A pan-global web exposure for your Journals.
  • A chance to preserve your research, online.
  • An international door to knowledge-sharing.
  • A mode to generate interest in your field.

As e-publishers, we cater to societies, institutes and individuals connected with any Indian Journal. A client-focused organisational structure maintains efficiency. IndianJournals.com functions on the basic principle - easier access to resources means a greater possibility of the resources being used.

For our readers, our product offers:

  1. A fast and user friendly search engine.
  2. Text accessibility in XML and PDF formats.
  3. Table of Content alerts.
  4. Digital Archives.
  5. External links for Associates' websites.
  6. Multiple online ordering options.
  7. Sample issues and online trial access facilities.
  8. User access option of a user-based one or an IP-based one.

For those seeking e-publishing services, our product provides:

  1. Promotion of materials on revenue sharing basis, with no cost involved on the publisher's part.
  2. Online Journal Publication and Management Service.
  3. Free access for Life Members.
  4. Online financial users and usage track.
  5. Editorial Services.

For submission guidelines, please click here.

We started and continue perpetually future-ready!
There will always be more to offer you as we stride forward.

║ Site map ║ Privacy Policy ║ Copyright ║ Terms & Conditions ║ Page Rank Tool
904,958,179 visitor(s) since 30th May, 2005.
All rights reserved. Site designed and maintained by DIVA ENTERPRISES PVT. LTD..
Note: Please use Internet Explorer (6.0 or above). Some functionalities may not work in other browsers.